home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Animacje, filmy i prezentacje / Modelowanie 3D / K-3D 0.6.5.0 / k3d-all-in-one-setup-0.6.5.0.exe / aqsis-setup-1.1.0-2006-12-09.exe / doc / INSTALL.txt < prev    next >
Encoding:
Text File  |  2006-11-26  |  8.1 KB  |  145 lines

  1. Building Aqsis
  2. --------------
  3.  
  4. As of version 1.1.0 Aqsis is using SCons as its build system on all platforms (yes, even on Windows), so the following instructions apply to all systems.
  5. Requirements
  6.  
  7. Building Aqsis requires a C++ compiler and the following tools and libraries:
  8.  
  9.     * SCons (v0.96.1+, SCons in turn requires Python)
  10.     * boost (v1.32.0+)
  11.     * libtiff.lib (v3.7.1+)
  12.     * flex (v2.5.4) (2.5.31 causes problems, see FAQ 2.2)
  13.     * bison (v1.35+)
  14.     * FLTK (v1.1.x) - optional, but required for framebuffer rendering
  15.     * libzlib (v1.1.4+)
  16.     * libjpeg (v6b+)
  17.     * xsltproc
  18.     * OpenEXR - if you want to read and write OpenEXR HDR image files
  19.  
  20. Win32: For the convenience of Windows users, most of the above stuff is readily available in the win32libs directory in the Aqsis SVN repository. However, you still have to get SCons, boost and FLTK.
  21. Obtaining the sources
  22.  
  23. You can either obtain the source archive or get the latest source code via SVN.
  24.  
  25. With SVN, itÆs recommened to check out the /trunk only, as it contains all you need to compile aqsis. If youÆre on Linux, you can save even more time by skipping the Win32 Libaries and checking out /trunk/aqsis only.
  26.  
  27. To obtain a clean checkout from SVN, first install SVN and make sure that you either provide the full path to the svn binary (svn.exe on Windows) or that you add svn to your PATH. Then go into an empty folder and call:
  28.  
  29. $ svn checkout https://svn.sourceforge.net/svnroot/aqsis/trunk
  30.  
  31. This will check out by default into a folder called /trunk - just as in the repository. If you donÆt want this, you can specify the target folder by passing it after the URL, like this (this will put the content of /trunk into ~/aqsis/current):
  32.  
  33. $ svn checkout https://svn.sourceforge.net/svnroot/aqsis/trunk ~/aqsis/current
  34.  
  35. If everything works fine, you should see some output like ...
  36.  
  37. A    trunk\aqsis
  38. A    trunk\aqsis\distribution
  39. A    trunk\aqsis\distribution\SConscript
  40. ...
  41.  
  42. Eventually you end up with a new directory, /trunk. /trunk/aqsis containes the complete source code, while /trunk/win32libs containes libraries only interesting for Windows users.
  43.  
  44. For more instructions on obtaining the source code via SVN see the SourceForge SVN page.
  45.  
  46. Building
  47. ========
  48.  
  49. If you already believe you meet all of the above requirements and the compiler/linker will be able to find everything then go ahead and call
  50.  
  51. scons
  52.  
  53. inside the aqsis directory (Windows users have to do this inside a DOS box). If all goes well you will find a shiny new version of Aqsis in the newly created output directory.
  54.  
  55. If there was an error after calling scons this indicates that some of the above components are either entirely missing or located in a non-standard path. In the latter case, you can tell scons about the location of your libraries in a file called custom.py (you have to create that file yourself inside the aqsis directory). This file simply contains variable assignments such as
  56.  
  57. fltk_include_path = r"C:\Libs\fltk-1.1.5rc1"
  58. fltk_lib_path = r"C:\Libs\fltk-1.1.5rc1\lib"
  59.  
  60. The syntax is plain Python code (in this example weÆre using raw strings (indicated by the ærÆ prefix) so that we donÆt have to use double backslashes). You can get a list of variables to manipulate by calling
  61.  
  62. scons --help
  63.  
  64. This will output a list of available variables together with their default values and their current values. Note that you can also call scons --help-options to get a list of available options that are passed directly to the scons tool.
  65.  
  66. System Specific Details
  67. =======================
  68.  
  69. Win32 - MSVC6.0/MSVC7.x
  70. =======================
  71.  
  72. The native build environment for Aqsis on Windows is MSVC6.
  73.  
  74. The package also compiles with VC7.1 (.NET 2003) and maybe even newer versions, but the resulting executable is not equivalent to the MSVC6 version. The VC7.1 version of Aqsis crashes on some scenes and may produce incorrect results if certain features are used.
  75.  
  76. Win32 - MingW
  77. =============
  78.  
  79. Prerequisites
  80.  
  81.     * MinGW (v3.1.0-1)
  82.  
  83. Install MinGW.
  84.  
  85. The MinGW build relies on the availability of a zlib and libTIFF library. This can be achieved by either getting the source and building it yourself, or alternatively, just getting the win32libs folder from SVN at https://svn.sourceforge.net/svnroot/aqsis/trunk/win32libs, which contains the necessary libs and headers.
  86.  
  87.   Note: Getting the win32libs SVN folder will also ensure you have a working copy of bison, flex and xsltproc from the requirements list above. 
  88.  
  89. Building Aqsis
  90. --------------
  91.  
  92. The process of getting the source and building Aqsis is mainly the same as the default procedure detailed above. You may need to force SCons to use the appropriate build system, and tell it where libTIFF and zlib are. You will need to convert the MSYS locations to Windows location, the æ/usrÆ folder is located at æC:\msys\1.0\Æ in installed to the default location.
  93.  
  94.  scons mingw=true boost_include_path=<wherever you installed boost to>
  95.  
  96.   Note: You will need to ensure that the MinGW bin directory is on your path, i.e. C:\MinGW\bin.
  97.  
  98. Linux
  99. =====
  100.  
  101. Because the build system originated on windows, everything is installed by default into the 'output/' subdirectory of the source directory.  This isn't what you normally want on linux, but the install_prefix variable can be used to fix the problem.  For example, suppose we specify install_prefix='/usr/local'.
  102.  
  103. If you're careful and don't build things as root, you should make use of the usual two-stage build and install.  To build the project, you can therefore run the command:
  104.  
  105. scons install_prefix='/usr/local' build
  106.  
  107. as a normal user, followed by
  108.  
  109. scons install_prefix='/usr/local' install
  110.  
  111. as root, which will copy the appropriate files into the /usr/local directory hierarchy.
  112.  
  113.  
  114. MacOSX
  115. ======
  116.  
  117. Installing
  118.  
  119. ...
  120. Troubleshooting
  121. ===============
  122.  
  123. Q (Windows): scons complains with
  124.  
  125. Checking for main() in C++ library libtiff... no
  126. Cannot find libtiff
  127.  
  128. but I have checked out win32libs at the correct location (or: have provided the correct paths in tiff_include_path/tiff_lib_path). WhatÆs wrong?
  129.  
  130. A: Check that you have set the environment variables for calling the Visual C++ compiler from inside a DOS box (i.e. check if you can invoke cl without getting an error). Depending on how youÆve installed MSVC this was already set up for you (and then you wonÆt get the above error), otherwise you have to manually call the batch file vcvars32.bat that comes with MSVC. For further information about the failure, check the config.log file in the project root, this will detail the results of the tests.
  131.  
  132. Q: Aqsis compiles for a while and then linker errors like the following appear (each line mentions STL somewhere):
  133.  
  134. ...
  135. renderer.obj : error LNK2001: unresolved external symbol "protected: virtual class _STL::list<struct Aqsis::SqDSOExternalCall *,class _STL::allocator<struct Aqsis::SqDSOExternalCall *> > * __thiscall Aqsis::CqDSORepository::getShadeOpMethods(class Aqsis::CqString *)" (?getShadeOpMethods@CqDSORepository@Aqsis@@MAEPAV?$list@PAUSqDSOExternalCall@Aqsis@@V?$allocator@PAUSqDSOExternalCall@Aqsis@@@_STL@@@_STL@@PAVCqString@2@@Z)
  136. renderer.obj : error LNK2001: unresolved external symbol "public: void __thiscall Aqsis::CqShaderVM::LoadProgram(class _STL::basic_istream<char,class _STL::char_traits<char> > *)" (?LoadProgram@CqShaderVM@Aqsis@@QAEXPAV?$basic_istream@DV?$char_traits@D@_STL@@@_STL@@@Z)
  137.  
  138. What is wrong?
  139.  
  140. A: You were probably using STLport instead of the native STL version of your compiler and Aqsis just does not link with the STLport runtime library.
  141.  
  142. Q: scons uses options settings (such as install_prefix, debug, etc.) that I didnÆt specify on the command line and that are not the default values. Where do they come from?
  143.  
  144. A: When you invoke scons it saves its current options in a file called options.cache which is read the next time you invoke scons again. This means, options are sort of ôstickyö, once specified they are in effect until they are specified again with a new value. If you want to go back to default values, simply delete this file. Call scons ûhelp to inspect the current values of all variables.
  145.